-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[이수지] sprint2 #27
The head ref may contain hidden characters: "Basic-\uC774\uC218\uC9C0-sprint2"
[이수지] sprint2 #27
Conversation
케밥케이스 사용
브라우저 기본 여백 삭제를 위해, 패딩과 마진 리셋 추가 * { padding: 0; margin: 0; }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수지님 이주차 스프린트 미션 고생하셨습니다!
심화 요구 사항까지 무난하게 구현하신것 같습니다 😁
기존 코드 리뷰 사항도 반영해주시고 리팩토링하신 것도 좋습니다.
이번에 작업을 잘 해주셔서 첨언할 것이 거의 없었습니다.
아래는 전반적인 피드백입니다.
- git commit 단위를 쪼개시고 msg 를 일관된 형식으로 작성하신 것이 좋습니다.
- login, signup 페이지의 경우 비슷한 디자인이라 하나의 css 를 공유하는 것이 유지보수에 좋을 것 같습니다.
<label for="email" class="login__label">이메일</label> | ||
<div class="login__field--id"> | ||
<input | ||
type="text" | ||
id="email" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3:
label 과 input을 연결하신거 좋습니다 👍
<button type="submit" class="login__submit">로그인</button> | ||
</form> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3:
button 과 form 태그를 같이 쓰신거 좋습니다 👍
top: 50%; | ||
right: 2.4rem; | ||
transform: translateY(-50%); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3:
중앙 정렬을 위해 이렇게 처리하신거 좋습니다 👍
아시겠지만 혹시나 해서 설명을 드리자면, 상대요소의 상단(top) 기준으로 50% 되는 곳에 위치시키게 되면
input height: 60px, icon height: 30px 일경우 60 * 0.5 = 30px 에 아이콘이 위치하게 됩니다.
시각적으로 중앙에 위치하기 위해서는 30px가 아닌 30 - (30 / 2) = 15px에 위치해야 합니다.
이를 고정값(15px)처럼 입력하게 되면 icon의 height가 변경되었을 시 같이 변경되야 하기 때문에 위와같이 작성합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3:
login.css 와 중복되는 내용이 많을 것 같습니다.
중복을 줄일 방법을 고민해보시면 좋겠습니다.
요구사항
기본
1. 로그인 페이지, 회원가입 페이지 공통
2. 로그인 페이지
3. 회원가입 페이지
심화
주요 변경사항
스크린샷
1. 로그인 페이지
2. 회원가입 페이지
멘토에게